home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / perl5 / Gtk2 / Pango.pm < prev    next >
Text File  |  2009-05-17  |  3KB  |  135 lines

  1. #
  2. # $Id$
  3. #
  4.  
  5. package Gtk2::Pango;
  6.  
  7. our $VERSION = '0.01';
  8.  
  9. use strict;
  10. require Exporter;
  11.  
  12. our @ISA = qw/Exporter/;
  13.  
  14. our @EXPORT = qw(
  15.     PANGO_WEIGHT_ULTRALIGHT
  16.     PANGO_WEIGHT_LIGHT
  17.     PANGO_WEIGHT_NORMAL
  18.     PANGO_WEIGHT_BOLD
  19.     PANGO_WEIGHT_ULTRABOLD
  20.     PANGO_WEIGHT_HEAVY
  21.  
  22.     PANGO_SCALE_XX_SMALL
  23.     PANGO_SCALE_X_SMALL
  24.     PANGO_SCALE_SMALL
  25.     PANGO_SCALE_MEDIUM
  26.     PANGO_SCALE_LARGE
  27.     PANGO_SCALE_X_LARGE
  28.     PANGO_SCALE_XX_LARGE
  29.  
  30.     PANGO_SCALE
  31. );
  32.  
  33. use constant PANGO_WEIGHT_ULTRALIGHT => 200;
  34. use constant PANGO_WEIGHT_LIGHT      => 300;
  35. use constant PANGO_WEIGHT_NORMAL     => 400;
  36. use constant PANGO_WEIGHT_BOLD       => 700;
  37. use constant PANGO_WEIGHT_ULTRABOLD  => 800;
  38. use constant PANGO_WEIGHT_HEAVY      => 900;
  39.  
  40. use constant PANGO_SCALE_XX_SMALL => 0.5787037037037;
  41. use constant PANGO_SCALE_X_SMALL  => 0.6444444444444;
  42. use constant PANGO_SCALE_SMALL    => 0.8333333333333;
  43. use constant PANGO_SCALE_MEDIUM   => 1.0;
  44. use constant PANGO_SCALE_LARGE    => 1.2;
  45. use constant PANGO_SCALE_X_LARGE  => 1.4399999999999;
  46. use constant PANGO_SCALE_XX_LARGE => 1.728;
  47.  
  48. use constant PANGO_SCALE => 1024;
  49.  
  50. 1;
  51.  
  52. =head1 NAME
  53.  
  54. Gtk2::Pango - constants for use with Pango
  55.  
  56. =head1 SYNOPSIS
  57.  
  58.   use Gtk2; # gets the actual Pango objects and methods
  59.  
  60.   use Gtk2::Pango; # load extra constants
  61.  
  62. =head1 DESCRIPTION
  63.  
  64. To use Pango effectively, you need a few extra constants that are not
  65. supplied in normal ways by the type system or by other means.
  66.  
  67. This module exports all of those extra constants when you load it.
  68. They use the fully-prefixed names from the C documentation.
  69.  
  70. =head1 EXPORT
  71.  
  72. PangoWeight is indeed defined as an enumerated type whose values can be
  73. used as nickname strings in the perl bindings, but in several places 
  74. where a weight is needed, a gint is requested instead.  This is because
  75. PangoWeight is actually just a set of predefined values for an integer-valued
  76. property.  The PANGO_WEIGHT_* constants give you the predefined values:
  77.  
  78.     PANGO_WEIGHT_ULTRALIGHT
  79.     PANGO_WEIGHT_LIGHT
  80.     PANGO_WEIGHT_NORMAL
  81.     PANGO_WEIGHT_BOLD
  82.     PANGO_WEIGHT_ULTRABOLD
  83.     PANGO_WEIGHT_HEAVY
  84.  
  85. These are #defined in the C source, and thus are not available anywhere
  86. except here:
  87.  
  88.     PANGO_SCALE_XX_SMALL
  89.     PANGO_SCALE_X_SMALL
  90.     PANGO_SCALE_SMALL
  91.     PANGO_SCALE_MEDIUM
  92.     PANGO_SCALE_LARGE
  93.     PANGO_SCALE_X_LARGE
  94.     PANGO_SCALE_XX_LARGE
  95.  
  96. PANGO_SCALE is needed to convert between Pango units and pixels.
  97. It is also available as Gtk2::Pango->scale.
  98.  
  99.     PANGO_SCALE
  100.  
  101. =head1 BUGS
  102.  
  103. This module shouldn't exist, but some parts of the API just aren't clean.
  104.  
  105. This stuff is hardcoded directly from the headers of pango 1.2.1.
  106.  
  107. =head1 SEE ALSO
  108.  
  109. L<perl>(1), L<Gtk2>(3pm)
  110.  
  111. =head1 AUTHOR
  112.  
  113. muppet E<lt>scott AT asofyet.orgE<gt>
  114.  
  115. =head1 COPYRIGHT AND LICENSE
  116.  
  117. Copyright 2003 by muppet
  118.  
  119. This library is free software; you can redistribute it and/or
  120. modify it under the terms of the GNU Library General Public
  121. License as published by the Free Software Foundation; either
  122. version 2.1 of the License, or (at your option) any later version.
  123.  
  124. This library is distributed in the hope that it will be useful,
  125. but WITHOUT ANY WARRANTY; without even the implied warranty of
  126. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  127. Library General Public License for more details.
  128.  
  129. You should have received a copy of the GNU Library General Public
  130. License along with this library; if not, write to the 
  131. Free Software Foundation, Inc., 59 Temple Place - Suite 330, 
  132. Boston, MA  02111-1307  USA.
  133.  
  134. =cut
  135.